home *** CD-ROM | disk | FTP | other *** search
/ Fritz: All Fritz / All Fritz.zip / All Fritz / FILES / UTILFILE / HUSH.LZH / HUSH.DOC < prev   
Text File  |  1979-11-30  |  2KB  |  50 lines

  1.  
  2. There is an error, (calling programming errors "bugs" tends to suggest
  3. they are cute little annoyances instead of programming blunders)
  4. a blunder in 3.x which causes floppy drives to have a "grinding" sound
  5. each time the drive is accessed.  This problem does not exist in 2.x.
  6.  
  7. The grinding sound is caused by an incorrect step rate.  The speed at
  8. which the disk head is moved is incorrectly set on booting.  The
  9. solution is to reset the step rate for floppy drives which can be done
  10. easily if you happen to know what to do.  The correct step rate is
  11. already part of DOS 3.x and through the use of the AX register and
  12. Interrupt 13 the correction can be made.  All that is needed is to set
  13. the AX register to zero with the instruction "xor ax,ax" and then call
  14. for "int 13."  This tiny program needs to end with "int 20" to return
  15. your system to DOS.
  16.  
  17.                        xxxx:0100    xor  ax,ax
  18.                        xxxx:0102    int  13
  19.                        xxxx:0104    int  20
  20.  
  21. You can create this program with DEBUG or simply use the one that
  22. accompanies this explanation.  Insert this tiny COM file in your
  23. AUTOEXEC.BAT file and your floppies, when using 3.x, will purr
  24. like a kitten.
  25.  
  26.  
  27.                                     C. J. Handlogen
  28.                                     9235 Whitehurst
  29.                                     Dallas, TX 75243
  30.  
  31.  
  32.  
  33.  
  34.  
  35.  
  36.  
  37.  
  38.  
  39.  
  40.  
  41.  
  42.  
  43.  
  44.  
  45.  
  46.  
  47.  
  48.  
  49.  
  50.